1bdd549e6b944aa28390210a0e403ea3e07f20d5,src/com/owncloud/android/lib/common/utils/Log_OC.java,Log_OC,e,#String#String#Throwable#,53
Before Change
public static void e(String TAG, String message, Throwable e) {
Log.e(TAG, message, e);
appendLog(TAG+" : " + message +" Exception : " + e.getStackTrace());
}
public static void v(String TAG, String message){
After Change
public static void e(String TAG, String message, Throwable e) {
Log.e(TAG, message, e);
appendLog(TAG+" : " + message +" Exception : " + Arrays.toString(e.getStackTrace()));
}
public static void v(String TAG, String message){